home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / DiskInit.p < prev    next >
Text File  |  1996-05-01  |  3KB  |  108 lines

  1. {
  2.      File:        DiskInit.p
  3.  
  4.      Contains:    Disk Initialization Package ('PACK' 2) Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT DiskInit;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __DISKINIT__}
  28. {$SETC __DISKINIT__ := 1}
  29.  
  30. {$I+}
  31. {$SETC DiskInitIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37.  
  38. {$PUSH}
  39. {$ALIGN MAC68K}
  40. {$LibExport+}
  41.  
  42. {$IFC FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED }
  43.  
  44. TYPE
  45.     HFSDefaultsPtr = ^HFSDefaults;
  46.     HFSDefaults = RECORD
  47.         sigWord:                PACKED ARRAY [0..1] OF CHAR;            {  signature word  }
  48.         abSize:                    LONGINT;                                {  allocation block size in bytes  }
  49.         clpSize:                LONGINT;                                {  clump size in bytes  }
  50.         nxFreeFN:                LONGINT;                                {  next free file number  }
  51.         btClpSize:                LONGINT;                                {  B-Tree clump size in bytes  }
  52.         rsrv1:                    INTEGER;                                {  reserved  }
  53.         rsrv2:                    INTEGER;                                {  reserved  }
  54.         rsrv3:                    INTEGER;                                {  reserved  }
  55.     END;
  56.  
  57. PROCEDURE DILoad;
  58.     {$IFC NOT GENERATINGCFM}
  59.     INLINE $7002, $3F00, $A9E9;
  60.     {$ENDC}
  61. PROCEDURE DIUnload;
  62.     {$IFC NOT GENERATINGCFM}
  63.     INLINE $7004, $3F00, $A9E9;
  64.     {$ENDC}
  65. FUNCTION DIBadMount(where: Point; evtMessage: LONGINT): INTEGER;
  66.     {$IFC NOT GENERATINGCFM}
  67.     INLINE $7000, $3F00, $A9E9;
  68.     {$ENDC}
  69. FUNCTION DIFormat(drvNum: INTEGER): OSErr;
  70.     {$IFC NOT GENERATINGCFM}
  71.     INLINE $7006, $3F00, $A9E9;
  72.     {$ENDC}
  73. FUNCTION DIVerify(drvNum: INTEGER): OSErr;
  74.     {$IFC NOT GENERATINGCFM}
  75.     INLINE $7008, $3F00, $A9E9;
  76.     {$ENDC}
  77. FUNCTION DIZero(drvNum: INTEGER; volName: Str255): OSErr;
  78.     {$IFC NOT GENERATINGCFM}
  79.     INLINE $700A, $3F00, $A9E9;
  80.     {$ENDC}
  81. {
  82.     DIXFormat, DIXZero, and DIReformat are only available when FSM (File System Manager) is installed.
  83.     FSM is part of Macintosh PC Exchange and System 7.5.
  84. }
  85. FUNCTION DIXFormat(drvNum: INTEGER; fmtFlag: BOOLEAN; fmtArg: LONGINT; VAR actSize: LONGINT): OSErr;
  86.     {$IFC NOT GENERATINGCFM}
  87.     INLINE $700C, $3F00, $A9E9;
  88.     {$ENDC}
  89. FUNCTION DIXZero(drvNum: INTEGER; volName: Str255; fsid: INTEGER; mediaStatus: INTEGER; volTypeSelector: INTEGER; volSize: LONGINT; extendedInfoPtr: UNIV Ptr): OSErr;
  90.     {$IFC NOT GENERATINGCFM}
  91.     INLINE $700E, $3F00, $A9E9;
  92.     {$ENDC}
  93. FUNCTION DIReformat(drvNum: INTEGER; fsid: INTEGER; volName: Str255; msgText: Str255): OSErr;
  94.     {$IFC NOT GENERATINGCFM}
  95.     INLINE $7010, $3F00, $A9E9;
  96.     {$ENDC}
  97. {$ENDC}
  98. {$ALIGN RESET}
  99. {$POP}
  100.  
  101. {$SETC UsingIncludes := DiskInitIncludes}
  102.  
  103. {$ENDC} {__DISKINIT__}
  104.  
  105. {$IFC NOT UsingIncludes}
  106.  END.
  107. {$ENDC}
  108.